home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programmer's Power Pack / Delphi Volume 1.iso / s_to_z / vpe_130 / delphi / vpedemo / unit2.pas < prev    next >
Pascal/Delphi Source File  |  1996-09-15  |  628b  |  38 lines

  1. unit Unit2;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, VPENGINE, StdCtrls, ExtCtrls, Buttons;
  8.  
  9. type
  10.   TForm2 = class(TForm)
  11.     Panel1: TPanel;
  12.     SpeedButton1: TSpeedButton;
  13.     Bevel1: TBevel;
  14.     Label1: TLabel;
  15.     Memo1: TMemo;
  16.     procedure SpeedButton1Click(Sender: TObject);
  17.   private
  18.     { Private declarations }
  19.   public
  20.     { Public declarations }
  21.   end;
  22.  
  23. var
  24.   Form2: TForm2;
  25.  
  26. implementation
  27.  
  28. uses Unit1;
  29.  
  30. {$R *.DFM}
  31.  
  32. procedure TForm2.SpeedButton1Click(Sender: TObject);
  33. begin
  34.   Form2.Visible := false;
  35. end;
  36.  
  37. end.
  38.